home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / misc / emu / amiSPIMsrc.lha / buttons.h < prev    next >
C/C++ Source or Header  |  1994-01-17  |  1KB  |  40 lines

  1. /* SPIM S20 MIPS simulator.
  2.    X interface to SPIM
  3.    Copyright (C) 1990-1994 by James Larus (larus@cs.wisc.edu).
  4.    ALL RIGHTS RESERVED.
  5.  
  6.    SPIM is distributed under the following conditions:
  7.  
  8.      You may make copies of SPIM for your own use and modify those copies.
  9.  
  10.      All copies of SPIM must retain my name and copyright notice.
  11.  
  12.      You may not sell SPIM or distributed SPIM in conjunction with a
  13.      commerical product or service without the expressed written consent of
  14.      James Larus.
  15.  
  16.    THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  17.    IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  18.    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  19.    PURPOSE. */
  20.  
  21.  
  22. /* $Header: /home/primost/larus/Software/SPIM/RCS/buttons.h,v 1.3 1994/01/18 03:21:45 larus Exp larus $
  23.  */
  24.  
  25.  
  26. /* Exported functions: */
  27.  
  28. #ifdef __STDC__
  29. void create_buttons (Widget parent);
  30. void confirm (Widget widget, XEvent *event, String *params,
  31.     Cardinal *num_params);
  32. void continue_prompt (int interrupt_seen);
  33. void record_file_name_for_prompt (char *name);
  34. #else
  35. void create_buttons ();
  36. void confirm ();
  37. void continue_prompt ();
  38. void record_file_name_for_prompt ();
  39. #endif
  40.